home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / lib / cryptsetup / scripts / decrypt_gpg < prev    next >
Text File  |  2009-10-14  |  347b  |  30 lines

  1. #!/bin/sh
  2.  
  3. decrypt_gpg () {
  4.     local key tries rc
  5.     key="$1"
  6.     tries=0
  7.     rc=1
  8.  
  9.     echo "Performing GPG key decryption" >&2
  10.     if /usr/bin/gpg -q --decrypt $key; then
  11.         return 0
  12.     else
  13.         return 1
  14.     fi
  15. }
  16.  
  17. echo "gpg decryption not implemented yet" >&2
  18. exit 1
  19.  
  20. if [ ! -x /usr/bin/gpg ]; then
  21.     exit 1
  22. fi
  23.  
  24. if [ -z "$1" ]; then
  25.     exit 1
  26. fi
  27.  
  28. decrypt_gpg "$1"
  29. exit $?
  30.